@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');


  .ins-image-container {
  text-align: center;
  margin-bottom: 20px;
}

.small-image {
  max-width: 200px;
  height: auto;
  border-radius: 50%;
  border: 5px solid #007bff;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease-in-out;
}

.small-image:hover {
  transform: scale(1.1);
}
  /* Header */
  .ins-header {
	/* background-color: #4CAF50; */
	color: white;
	padding: 20px;
	text-align: center;
	font-size: 1.8rem;
  }
  
  /* Main Content */
  .ins-main-content {
	padding: 20px;
	max-width: 1200px;
	margin: 0 auto;
	background: white;
	box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
	border-radius: 8px;
  }
  
  .ins-institute-details h2 {
	text-align: center;
	margin-bottom: 20px;
	color: #333;
  }
  
  /* Table Styles */
  table {
	width: 100%;
	border-collapse: collapse;
  }
  
  table th, table td {
	text-align: left;
	padding: 12px;
	border: 1px solid #ddd;
  }
  
  table th {
	background-color: #4CAF50;
	color: white;
	width: 50px;
  }
  
  table td a {
	color: #4CAF50;
	text-decoration: none;
  }
  
  table td a:hover {
	text-decoration: underline;
  }
  
/* footer start */
#about-footer {
    background: linear-gradient(to right, #3a3a3a, #1e1e1e);
    color: #f0f0f0; 
    padding: 40px 20px;
	border: 2px solid red;
	border-top-left-radius: 0px;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
}

.about-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: space-between;
}

.about-footer-col {
    flex: 1 1 calc(25% - 20px); /* Responsive 4 columns */
    min-width: 200px;
}

.about-footer-col h4 {
    font-size: 18px;
    margin-bottom: 15px;
    color: #ffcc00; /* Highlighted header color */
    text-transform: uppercase;
    border-bottom: 2px solid #ffcc00;
    padding-bottom: 5px;
}

.about-footer-col ul {
    list-style: none;
    padding: 0;
}

.about-footer-col ul li {
    margin-bottom: 10px;
}

.about-footer-col ul li a {
    color: #f0f0f0;
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

.about-footer-col ul li a:hover {
    color: #ffcc00; /* Hover effect color */
}

@media (max-width: 768px) {
    .about-footer-col {
        flex: 1 1 calc(50% - 20px); /* 2 columns on smaller screens */
    }
}

@media (max-width: 480px) {
    .about-footer-col {
        flex: 1 1 100%; /* Single column on small devices */
    }
}
